home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000092_news@columbia.edu _Wed Oct 25 10:09:56 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id KAA05794
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Wed, 25 Oct 2000 10:09:56 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA28241
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 25 Oct 2000 10:09:55 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id KAA00947
  10.     for kermit.misc@watsun.cc.columbia.edu; Wed, 25 Oct 2000 10:07:35 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: kermit server via a dial line
  14. Date: 25 Oct 2000 14:07:34 GMT
  15. Organization: Columbia University
  16. Message-ID: <8t6pf6$th$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <ChxJ5.2581$WP2.8726717@nnrp2.proxad.net>,
  20. Jacques Brati∩┐╜res <j.bratieres@free.fr> wrote:
  21. : We have to set up a kermit server on a dial (remote) line with a USR modem
  22. : on a Linux system
  23. : (kermit vers:7.0.196). we initialize the server with the commands : set def
  24. : ...,set esc ...,set line /dev/ttyS0,set speed 9600,server.  This seems to be
  25. : ok and the screen shows the transfer to come.
  26. : On the same computer we run kermit with the commands: set def ...,set esc
  27. : ...,set line/dev/ttyS1,set modem type usrobotics,set speed 9600,dial
  28. : #########. The dialling occurs ,the connection is established and the prompt
  29. : is returned
  30. : to kermit. We then try to SEND something AND: on this side the kermit tries
  31. : to send and resends
  32. :  the file and does not
  33. : succeed. on the server side nothing happens on the screen.
  34. : What have we forgotten
  35. As was explained to you when you sent the same message to our email
  36. support address, the problem is most likely a lack of effective flow
  37. control between the serial devices and modems.
  38.  
  39.  . You should put the SET MODEM TYPE command before the SET LINE command.
  40.    This ensures that Kermit sets the appropriate parameters for the serial
  41.    port when it opens it (flow control, treatment of carrier, etc).
  42.  
  43.  . The side that executes the SERVER command needs to SET MODEM TYPE, 
  44.    SET FLOW, and use the ANSWER command.
  45.  
  46. Also you have to make sure that the serial port speed on the server is the
  47. same as the answering modem's serial port speed.  The former must be locked;
  48. otherwise the server will not be able to communicate with the answering modem.
  49.  
  50. For greater detail and examples, see the manual:
  51.  
  52.   http://www.columbia.edu/kermit/ck60manual.html
  53.  
  54. - Frank